*/
@Override
public void flushBuffer() {
this.writer.flush();
this.committed = true;
}
*/
@Override
public void flushBuffer() {
if (this.writer != null) {
this.writer.flush();
}
this.committed = true;